home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
-
- // these are simply the tag ids for a set of aspect ratios...
-
- #define WW_ASPECT_DONT_CARE 0
-
- // NTSC is 4:3
- #define WW_ASPECT_NTSC 1
-
- // Academy is 1.33:1
- #define WW_ASPECT_ACADEMY 1
-
- #define WW_ASPECT_SQUARE 3
- #define WW_ASPECT_CUSTOM 4
-
- // American Widescreen is 1.85:1
- #define WW_ASPECT_AMERICAN_WIDESCREEN 5
-
- // European Widescreen is 1.66:1
- #define WW_ASPECT_EUROPEAN_WIDESCREEN 6
-
- // VistaVision is 2.21:1
- #define WW_ASPECT_VISTA_VISION 7
-
-